Conditions | 1 |
Total Lines | 8 |
Code Lines | 3 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | import { BaseEndpoint } from './baseEndpoint'; |
||
17 | |||
18 | /** |
||
19 | * Get list of changes for tv shows |
||
20 | * @returns { Promise<ChangesResponse> } |
||
21 | * @see https://developers.themoviedb.org/3/changes/get-tv-change-list |
||
22 | */ |
||
23 | public async tv(): Promise<ChangesResponse> { |
||
24 | return this.sendGetRequest('tv/changes'); |
||
25 | } |
||
37 |